home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / FROMUTS / PERL / Perl / Lib / Perldb < prev    next >
Text File  |  1991-02-09  |  15KB  |  557 lines

  1. package DB;
  2.  
  3. $header = '$Header: perldb.pl,v 3.0.1.6 91/01/11 18:08:58 lwall Locked $';
  4. #
  5. # This file is automatically included if you do perl -d.
  6. # It's probably not useful to include this yourself.
  7. #
  8. # Perl supplies the values for @line and %sub.  It effectively inserts
  9. # a do DB'DB(<linenum>); in front of every place that can
  10. # have a breakpoint.  It also inserts a do 'perldb.pl' before the first line.
  11. #
  12. # $Log:    perldb.pl,v $
  13. # Revision 3.0.1.6  91/01/11  18:08:58  lwall
  14. # patch42: @_ couldn't be accessed from debugger
  15. # Revision 3.0.1.5  90/11/10  01:40:26  lwall
  16. # patch38: the debugger wouldn't stop correctly or do action routines
  17. # Revision 3.0.1.4  90/10/15  17:40:38  lwall
  18. # patch29: added caller
  19. # patch29: the debugger now understands packages and evals
  20. # patch29: scripts now run at almost full speed under the debugger
  21. # patch29: more variables are settable from debugger
  22. # Revision 3.0.1.3  90/08/09  04:00:58  lwall
  23. # patch19: debugger now allows continuation lines
  24. # patch19: debugger can now dump lists of variables
  25. # patch19: debugger can now add aliases easily from prompt
  26. # Revision 3.0.1.2  90/03/12  16:39:39  lwall
  27. # patch13: perl -d didn't format stack traces of *foo right
  28. # patch13: perl -d wiped out scalar return values of subroutines
  29. # Revision 3.0.1.1  89/10/26  23:14:02  lwall
  30. # patch1: RCS expanded an unintended $Header in lib/perldb.pl
  31. # Revision 3.0  89/10/18  15:19:46  lwall
  32. # 3.0 baseline
  33. # Revision 2.0  88/06/05  00:09:45  root
  34. # Baseline version 2.0.
  35. #
  36.  
  37. open(OUT,">RawVDU:");        # so we don't dongle stdout
  38. select(OUT);
  39. $| = 1;                # for DB'OUT
  40.  
  41. select(STDOUT);
  42. $| = 1;                # for real STDOUT
  43. $sub = '';
  44.  
  45. $header =~ s/.Header: ([^,]+),v(\s+\S+\s+\S+).*$/$1$2/;
  46. &outstr("\nLoading DB routines from $header\n\nEnter h for help.\n\n");
  47.  
  48. sub DB {
  49.     &save;
  50.     ($package, $filename, $line) = caller;
  51.     $usercontext = '($@, $!, $[, $,, $/, $\) = @saved;' .
  52.     "package $package;";        # this won't let them modify, alas
  53.     local(*dbline) = "_<$filename";
  54.     $max = $#dbline;
  55.     if (($stop,$action) = split(/\0/,$dbline{$line})) {
  56.     if ($stop eq '1') {
  57.         $signal |= 1;
  58.     }
  59.     else {
  60.         $evalarg = "\$DB'signal |= do {$stop;}"; &eval;
  61.         $dbline{$line} =~ s/;9($|\0)/$1/;
  62.     }
  63.     }
  64.     if ($single || $trace || $signal) {
  65.     &outstr("$package'") unless $sub =~ /'/;
  66.     &outstr("$sub($filename:$line):  " . $dbline[$line]);
  67.     for ($i = $line + 1; $i <= $max && $dbline[$i] == 0; ++$i) {
  68.         last if $dbline[$i] =~ /^\s*(}|#|\n)/;
  69.         &outstr("$sub($filename:$i):  " . $dbline[$i]);
  70.     }
  71.     }
  72.     $evalarg = $action, &eval if $action;
  73.     if ($single || $signal) {
  74.     $evalarg = $pre, &eval if $pre;
  75.     &outstr($#stack . " levels deep in subroutine calls!\n")
  76.         if $single & 4;
  77.     $start = $line;
  78.     while (&outstr("  DB<" . ($#hist+1) . "> "), $cmd=&gets) {
  79.         $single = 0;
  80.         $signal = 0;
  81.         $cmd eq '' && exit 0;
  82.         chop($cmd);
  83.         $cmd =~ s/\\$// && do {
  84.         &outstr("  cont: ");
  85.         $cmd .= &gets;
  86.         redo;
  87.         };
  88.         $cmd =~ /^q$/ && exit 0;
  89.         $cmd =~ /^$/ && ($cmd = $laststep);
  90.         push(@hist,$cmd) if length($cmd) > 1;
  91.         ($i) = split(/\s+/,$cmd);
  92.         eval "\$cmd =~ $alias{$i}", &outstr($@) if $alias{$i};
  93.         $cmd =~ /^h$/ && do {
  94.         &outstr("
  95. T               Stack trace.
  96. s               Single step.
  97. n               Next, steps over subroutine calls.
  98. r               Return from current subroutine.
  99. c [line]        Continue; optionally inserts a one-time-only breakpoint 
  100.                 at the specified line.
  101. <CR>            Repeat last n or s.
  102. l min+incr      List incr+1 lines starting at min.
  103. l min-max       List lines.
  104. l line          List line;
  105. l               List next window.
  106. -               List previous window.
  107. w line          List window around line.
  108. l subname       List subroutine.
  109. f filename      Switch to filename.
  110. /pattern/       Search forwards for pattern; final / is optional.
  111. ?pattern?       Search backwards for pattern.
  112. L               List breakpoints and actions.
  113. S               List subroutine names.
  114. t               Toggle trace mode.
  115. b [line] [condition]
  116.                 Set breakpoint; line defaults to the current execution line; 
  117.                 condition breaks if it evaluates to true, defaults to \'1\'.
  118. b subname [condition]
  119.                 Set breakpoint at first line of subroutine.
  120. d [line]        Delete breakpoint.
  121. D               Delete all breakpoints.
  122. a [line] command
  123.                 Set an action to be done before the line is executed.
  124.                 Sequence is: check for breakpoint, print line if necessary,
  125.                 do action, prompt user if breakpoint or step, evaluate line.
  126. A               Delete all actions.
  127. V [pkg [vars]]    List some (default all) variables in a package (default current).
  128. X [vars]    Same as \"V currentpackage [vars]\".
  129. < command       Define command before prompt.
  130. > command       Define command after prompt.
  131. ! number        Redo command (default previous command).
  132. ! -number       Redo number\'th to last command.
  133. H -number       Display last number commands (default all).
  134. q or ^D         Quit.
  135. p expr          Same as \"&DB'outstr(expr)\" in current package.
  136. = [alias value]    Define a command alias, or list current aliases.
  137. command         Execute as a perl statement in current package.
  138.  
  139. ");
  140.         next; };
  141.         $cmd =~ /^t$/ && do {
  142.         $trace = !$trace;
  143.         &outstr("Trace = ".($trace?"on":"off")."\n");
  144.         next; };
  145.         $cmd =~ /^S$/ && do {
  146.         foreach $subname (sort(keys %sub)) {
  147.             &outstr($subname . "\n");
  148.         }
  149.         next; };
  150.         $cmd =~ s/^X\b/V $package/;
  151.         $cmd =~ /^V$/ && do {
  152.         $cmd = 'V $package'; };
  153.         $cmd =~ /^V\s*(\S+)\s*(.*)/ && do {
  154.         $packname = $1;
  155.         @vars = split(' ',$2);
  156.         do 'dumpvar' unless defined &main'dumpvar;
  157.         if (defined &main'dumpvar) {
  158.             &main'dumpvar($packname,@vars);
  159.         }
  160.         else {
  161.             &DB'outstr("dumpvar not available.\n");
  162.         }
  163.         next; };
  164.         $cmd =~ /^f\s*(.*)/ && do {
  165.         $file = $1;
  166.         if (!$file) {
  167.             &outstr("The old f command is now the r command.\n");
  168.             &outstr("The new f command switches filenames.\n");
  169.             next;
  170.         }
  171.         if (!defined $_main{'_<' . $file}) {
  172.             if (($try) = grep(m#^_<.*$file#, keys %_main)) {
  173.             $file = substr($try,2);
  174.             print "\n$file:\n";
  175.             }
  176.         }
  177.         if (!defined $_main{'_<' . $file}) {
  178.             &outstr("There's no code here anything matching $file.\n");
  179.             next;
  180.         }
  181.         elsif ($file ne $filename) {
  182.             *dbline = "_<$file";
  183.             $max = $#dbline;
  184.             $filename = $file;
  185.             $start = 1;
  186.             $cmd = "l";
  187.         } };
  188.         $cmd =~ /^l\s*(['A-Za-z_]['\w]*)/ && do {
  189.         $subname = $1;
  190.         $subname = "main'" . $subname unless $subname =~ /'/;
  191.         $subname = "main" . $subname if substr($subname,0,1) eq "'";
  192.         ($file,$subrange) = split(/:/,$sub{$subname});
  193.         if ($file ne $filename) {
  194.             *dbline = "_<$file";
  195.             $max = $#dbline;
  196.             $filename = $file;
  197.         }
  198.         if ($subrange) {
  199.             if (eval($subrange) < -$window) {
  200.             $subrange =~ s/-.*/+/;
  201.             }
  202.             $cmd = "l $subrange";
  203.         } else {
  204.             &outstr("Subroutine $1 not found.\n");
  205.             next;
  206.         } };
  207.         $cmd =~ /^w\s*(\d*)$/ && do {
  208.         $incr = $window - 1;
  209.         $start = $1 if $1;
  210.         $start -= $preview;
  211.         $cmd = 'l ' . $start . '-' . ($start + $incr); };
  212.         $cmd =~ /^-$/ && do {
  213.         $incr = $window - 1;
  214.         $cmd = 'l ' . ($start-$window*2) . '+'; };
  215.         $cmd =~ /^l$/ && do {
  216.         $incr = $window - 1;
  217.         $cmd = 'l ' . $start . '-' . ($start + $incr); };
  218.         $cmd =~ /^l\s*(\d*)\+(\d*)$/ && do {
  219.         $start = $1 if $1;
  220.         $incr = $2;
  221.         $incr = $window - 1 unless $incr;
  222.         $cmd = 'l ' . $start . '-' . ($start + $incr); };
  223.         $cmd =~ /^l\s*(([\d\$\.]+)([-,]([\d\$\.]+))?)?/ && do {
  224.         $end = (!$2) ? $max : ($4 ? $4 : $2);
  225.         $end = $max if $end > $max;
  226.         $i = $2;
  227.         $i = $line if $i eq '.';
  228.         $i = 1 if $i < 1;
  229.         for (; $i <= $end; $i++) {
  230.             &outstr("$i:  " . $dbline[$i]);
  231.             last if $signal;
  232.         }
  233.         $start = $i;    # remember in case they want more
  234.         $start = $max if $start > $max;
  235.         next; };
  236.         $cmd =~ /^D$/ && do {
  237.         &outstr("Deleting all breakpoints...\n");
  238.         for ($i = 1; $i <= $max ; $i++) {
  239.             if (defined $dbline{$i}) {
  240.             $dbline{$i} =~ s/^[^\0]+//;
  241.             if ($dbline{$i} =~ s/^\0?$//) {
  242.                 delete $dbline{$i};
  243.             }
  244.             }
  245.         }
  246.         next; };
  247.         $cmd =~ /^L$/ && do {
  248.         for ($i = 1; $i <= $max; $i++) {
  249.             if (defined $dbline{$i}) {
  250.             &outstr("$i:  " . $dbline[$i]);
  251.             ($stop,$action) = split(/\0/, $dbline{$i});
  252.             &outstr("  break if (" . $stop . ")\n")
  253.                 if $stop;
  254.             &outstr("  action:  " . $action . "\n")
  255.                 if $action;
  256.             last if $signal;
  257.             }
  258.         }
  259.         next; };
  260.         $cmd =~ /^b\s*(['A-Za-z_]['\w]*)\s*(.*)/ && do {
  261.         $subname = $1;
  262.         $cond = $2 || '1';
  263.         $subname = "$package'" . $subname unless $subname =~ /'/;
  264.         $subname = "main" . $subname if substr($subname,0,1) eq "'";
  265.         ($filename,$i) = split(/[:-]/, $sub{$subname});
  266.         if ($i) {
  267.             *dbline = "_<$filename";
  268.             ++$i while $dbline[$i] == 0 && $i < $#dbline;
  269.             $dbline{$i} =~ s/^[^\0]*/$cond/;
  270.         } else {
  271.             &outstr("Subroutine $subname not found.\n");
  272.         }
  273.         next; };
  274.         $cmd =~ /^b\s*(\d*)\s*(.*)/ && do {
  275.         $i = ($1?$1:$line);
  276.         $cond = $2 || '1';
  277.         if ($dbline[$i] == 0) {
  278.             &outstr("Line $i not breakable.\n");
  279.         } else {
  280.             $dbline{$i} =~ s/^[^\0]*/$cond/;
  281.         }
  282.         next; };
  283.         $cmd =~ /^d\s*(\d+)?/ && do {
  284.         $i = ($1?$1:$line);
  285.         $dbline{$i} =~ s/^[^\0]*//;
  286.         delete $dbline{$i} if $dbline{$i} eq '';
  287.         next; };
  288.         $cmd =~ /^A$/ && do {
  289.         for ($i = 1; $i <= $max ; $i++) {
  290.             if (defined $dbline{$i}) {
  291.             $dbline{$i} =~ s/\0[^\0]*//;
  292.             delete $dbline{$i} if $dbline{$i} eq '';
  293.             }
  294.         }
  295.         next; };
  296.         $cmd =~ /^<\s*(.*)/ && do {
  297.         $pre = do action($1);
  298.         next; };
  299.         $cmd =~ /^>\s*(.*)/ && do {
  300.         $post = do action($1);
  301.         next; };
  302.         $cmd =~ /^a\s*(\d+)(\s+(.*))?/ && do {
  303.         $i = $1;
  304.         if ($dbline[$i] == 0) {
  305.             &outstr("Line $i may not have an action.\n");
  306.         } else {
  307.             $dbline{$i} =~ s/\0[^\0]*//;
  308.             $dbline{$i} .= "\0" . do action($3);
  309.         }
  310.         next; };
  311.         $cmd =~ /^n$/ && do {
  312.         $single = 2;
  313.         $laststep = $cmd;
  314.         last; };
  315.         $cmd =~ /^s$/ && do {
  316.         $single = 1;
  317.         $laststep = $cmd;
  318.         last; };
  319.         $cmd =~ /^c\s*(\d*)\s*$/ && do {
  320.         $i = $1;
  321.         if ($i) {
  322.             if ($dbline[$i] == 0) {
  323.                 &outstr("Line $i not breakable.\n");
  324.             next;
  325.             }
  326.             $dbline{$i} =~ s/(\0|$)/;9$1/;    # add one-time-only b.p.
  327.         }
  328.         for ($i=0; $i <= $#stack; ) {
  329.             $stack[$i++] &= ~1;
  330.         }
  331.         last; };
  332.         $cmd =~ /^r$/ && do {
  333.         $stack[$#stack] |= 2;
  334.         last; };
  335.         $cmd =~ /^T$/ && do {
  336.         local($p,$f,$l,$s,$h,$a,@a,@sub);
  337.         for ($i = 1; ($p,$f,$l,$s,$h,$w) = caller($i); $i++) {
  338.             @a = @args;
  339.             for (@a) {
  340.             if (/^StB\000/ && length($_) == length($_main{'_main'})) {
  341.                 $_ = sprintf("%s",$_);
  342.             }
  343.             else {
  344.                 s/'/\\'/g;
  345.                 s/([^\0]*)/'$1'/ unless /^-?[\d.]+$/;
  346.                 s/([\200-\377])/sprintf("M-%c",ord($1)&0177)/eg;
  347.                 s/([\0-\37\177])/sprintf("^%c",ord($1)^64)/eg;
  348.             }
  349.             }
  350.             $w = $w ? '@ = ' : '$ = ';
  351.             $a = $h ? '(' . join(', ', @a) . ')' : '';
  352.             push(@sub, "$w&$s$a from file $f line $l\n");
  353.             last if $signal;
  354.         }
  355.         for ($i=0; $i <= $#sub; $i++) {
  356.             last if $signal;
  357.             &outstr($sub[$i]);
  358.         }
  359.             next; };
  360.         $cmd =~ /^\/(.*)$/ && do {
  361.         $inpat = $1;
  362.         $inpat =~ s:([^\\])/$:$1:;
  363.         if ($inpat ne "") {
  364.             eval '$inpat =~ m'."\n$inpat\n";    
  365.             if ($@ ne "") {
  366.                 &outstr($@);
  367.                 next;
  368.             }
  369.             $pat = $inpat;
  370.         }
  371.         $end = $start;
  372.         eval '
  373.         for (;;) {
  374.             ++$start;
  375.             $start = 1 if ($start > $max);
  376.             last if ($start == $end);
  377.             if ($dbline[$start] =~ m'."\n$pat\n".'i) {
  378.             &outstr("$start:  " . $dbline[$start] . "\n");
  379.             last;
  380.             }
  381.         } ';
  382.         &outstr("/$pat/: not found\n") if ($start == $end);
  383.         next; };
  384.         $cmd =~ /^\?(.*)$/ && do {
  385.         $inpat = $1;
  386.         $inpat =~ s:([^\\])\?$:$1:;
  387.         if ($inpat ne "") {
  388.             eval '$inpat =~ m'."\n$inpat\n";    
  389.             if ($@ ne "") {
  390.                 &outstr($@);
  391.                 next;
  392.             }
  393.             $pat = $inpat;
  394.         }
  395.         $end = $start;
  396.         eval '
  397.         for (;;) {
  398.             --$start;
  399.             $start = $max if ($start <= 0);
  400.             last if ($start == $end);
  401.             if ($dbline[$start] =~ m'."\n$pat\n".'i) {
  402.             &outstr("$start:  " . $dbline[$start] . "\n");
  403.             last;
  404.             }
  405.         } ';
  406.         &outstr("?$pat?: not found\n") if ($start == $end);
  407.         next; };
  408.         $cmd =~ /^!+\s*(-)?(\d+)?$/ && do {
  409.         pop(@hist) if length($cmd) > 1;
  410.         $i = ($1?($#hist-($2?$2:1)):($2?$2:$#hist));
  411.         $cmd = $hist[$i] . "\n";
  412.         &outstr($cmd);
  413.         redo; };
  414.         $cmd =~ /^!(.+)$/ && do {
  415.         $pat = "^$1";
  416.         pop(@hist) if length($cmd) > 1;
  417.         for ($i = $#hist; $i; --$i) {
  418.             last if $hist[$i] =~ $pat;
  419.         }
  420.         if (!$i) {
  421.             &outstr("No such command!\n\n");
  422.             next;
  423.         }
  424.         $cmd = $hist[$i] . "\n";
  425.         &outstr($cmd);
  426.         redo; };
  427.         $cmd =~ /^H\s*(-(\d+))?/ && do {
  428.         $end = $2?($#hist-$2):0;
  429.         $hist = 0 if $hist < 0;
  430.         for ($i=$#hist; $i>$end; $i--) {
  431.             &outstr("$i: " . $hist[$i] . "\n")
  432.             unless $hist[$i] =~ /^.?$/;
  433.         };
  434.         next; };
  435.         $cmd =~ /^p\b/ && do {
  436.         if ($cmd =~ /^p$/) {
  437.             &outstr($_);
  438.         } elsif ($cmd =~ /^p\s+(.*)/) {
  439.             $evalarg = "&DB'outstr($1)"; &eval;
  440.         };
  441.         &outstr("\n");
  442.         next; };
  443.         $cmd =~ /^=/ && do {
  444.         if (local($k,$v) = ($cmd =~ /^=\s*(\S+)\s+(.*)/)) {
  445.             $alias{$k}="s~$k~$v~";
  446.             &outstr("$k = $v\n");
  447.         } elsif ($cmd =~ /^=\s*$/) {
  448.             foreach $k (sort keys(%alias)) {
  449.             if (($v = $alias{$k}) =~ s~^s\~$k\~(.*)\~$~$1~) {
  450.                 &outstr("$k = $v\n");
  451.             } else {
  452.                 &outstr("$k  $alias{$k}\n");
  453.             };
  454.             };
  455.         };
  456.         next; };
  457.         $evalarg = $cmd; &eval;
  458.         &outstr("\n");
  459.     }
  460.     if ($post) {
  461.         $evalarg = $post; &eval;
  462.     }
  463.     }
  464.     ($@, $!, $[, $,, $/, $\) = @saved;
  465. }
  466.  
  467. sub save {
  468.     @saved = ($@, $!, $[, $,, $/, $\);
  469.     $[ = 0; $, = ""; $/ = "\n"; $\ = "";
  470. }
  471.  
  472. # The following takes its argument via $evalarg to preserve current @_
  473.  
  474. sub eval {
  475.     eval "$usercontext $evalarg; &DB'save";
  476.     &outstr($@) if $@;
  477. }
  478.  
  479. sub action {
  480.     local($action) = @_;
  481.     while ($action =~ s/\\$//) {
  482.     &outstr("+ ");
  483.     $action .= &gets;
  484.     }
  485.     $action;
  486. }
  487.  
  488. sub gets {
  489.     local($.);
  490.     local($buf) = ' ' x 255;
  491.     local($regs) = syscall("OS_ReadLine",$buf,255,32,127);
  492.  
  493.     if ($regs) {
  494.     local($len) = unpack('x4 I',$regs);
  495.     $buf = substr($buf,0,$len) . "\n";
  496.     $buf;
  497.     }
  498.     else {
  499.     undef;
  500.     }
  501. }
  502.  
  503. sub catch {
  504.     $signal = 1;
  505. }
  506.  
  507. sub sub {
  508.     push(@stack, $single);
  509.     $single &= 1;
  510.     $single |= 4 if $#stack == $deep;
  511.     if (wantarray) {
  512.     @i = &$sub;
  513.     $single |= pop(@stack);
  514.     @i;
  515.     }
  516.     else {
  517.     $i = &$sub;
  518.     $single |= pop(@stack);
  519.     $i;
  520.     }
  521. }
  522.  
  523. sub outstr {
  524.     local($_) = join('',@_);
  525.  
  526.     s/\n/\r\n/g;
  527.     print DB'OUT $_;
  528. }
  529.  
  530. $single = 1;            # so it stops on first executable statement
  531. @hist = ('?');
  532. $SIG{'INT'} = "DB'catch";
  533. $deep = 100;            # warning if stack gets this deep
  534. $window = 10;
  535. $preview = 3;
  536.  
  537. @stack = (0);
  538. @args = @ARGV;
  539. for (@args) {
  540.     s/'/\\'/g;
  541.     s/(.*)/'$1'/ unless /^-?[\d.]+$/;
  542. }
  543.  
  544. if (-f $ENV{'Perl$DBInit'}) {
  545.     do $ENV{'Perl$DBInit'};
  546. }
  547.  
  548. 1;
  549.